5. Position & Display
1. Position (Static, Sticky, Fixed, relative and absolute)
static (default value)
sticky top-0 (when page scrolls and reaches here, it sticks at top-0)
fixed right-0 bottom-0
Parent
static left-5
relative left-5
absolute left-5 (since parent has default position (i.e static), will refer from html)
2. Display (inline, inline-block, block)
inline w-1/2
inline-block w-1/2
block w-1/2
hidden w-1/2
hidden
⬅️
➡️